MEMMOVE
Section: C Library Functions (3)
Index
Return to Main Contents
BSD mandoc
NAME
memmove
- copy byte string
SYNOPSIS
Fd #include <string.h>
Ft void *
Fn memmove void *dst const void *src size_t len
DESCRIPTION
The
Fn memmove
function
copies
Fa len
bytes from string
Fa src
to string
Fa dst .
The two strings may overlap;
the copy is always done in a non-destructive manner.
RETURN VALUES
The
Fn memmove
function returns the original value of
Fa dst .
SEE ALSO
bcopy(3),
memccpy(3),
memcpy(3),
strcpy(3)
STANDARDS
The
Fn memmove
function
conforms to
St -ansiC .
Index
- NAME
-
- SYNOPSIS
-
- DESCRIPTION
-
- RETURN VALUES
-
- SEE ALSO
-
- STANDARDS
-
This document was created by
man2html,
using the manual pages.
Time: 16:28:57 GMT, April 18, 2022